home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
mint
/
editors
/
mntemacs.zoo
/
src
/
lib+
/
abort_in.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-12-02
|
270 b
|
10 lines
#include <stdio.h>
void
_abort_internal(int line, char *file)
{
fprintf(stderr, "\r\nAborting at line %d of file %s\r\n", line, file);
abort(); /* note that this won't work of compile this
with the define that got us to this fun in
the first place */
}